home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
WIN_VB
/
VB_7DAYS.ZIP;1
/
TABENTER.BAS
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-02-17
|
274 b
|
14 lines
' TabEnter
' Use this code to allow users to move from field to field
' by pressing Enter instead of Tab.
Const KEY_RETURN = &HD
Sub Text1_KeyPress (KeyAscii As Integer)
If KeyAscii = KEY_RETURN Then
KeyAscii = 0
SendKeys "{Tab}"
End If
End Sub